html {
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    background-color: var(--pink-background);
    margin-top: 16px;
}

.hero-title {
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    white-space: normal;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    padding-top: 96px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 400px;
    padding: 96px 48px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    
}

.hero-container span {
    /* font-size: 48px; */
    line-height: 0;
}

.about-text {
    max-width: 800px;
}

.about-paragraph {
    font-size: 36px;
    /* margin: 48px 0 96px 0; */
}

.hero-container .about-image {
    /* min-width: 300px; */
    width: 30%;
    max-width: 350px;
    border-radius: 100%;
}

@media (max-width: 1500px) {
    .hero-container {
        gap: 200px;
    }
}

@media (max-width: 1250px) {
    .hero-container {
        gap: 100px;
    }
    .about-paragraph {
        font-size: 32px;
    }
    /* .hero-container span {
        font-size: 44px;
    } */
}

@media (max-width: 1100px) {
    .hero-container {
        flex-direction: column;
    }
    .about-text {
        text-align: center;
    }
    .about-button {
        display: flex;
        margin: 0 auto;
    }
    .hero-container .about-image{
        min-width: 300px;
        width: 35%;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .about-paragraph {
        font-size: 28px;
    }
    /* .hero-container span {
        font-size: 40px;
    } */
    .hero-container .about-image{
        min-width: 200px;
        width: 55%;
        max-width: 400px;
    }
}

@media (max-width: 450px) {
    .hero-container {
        padding: 96px 16px;
    }
    .about-paragraph {
        font-size: 24px;
    }
    /* .hero-container span {
        font-size: 36px;
    } */
}

/* Stats Section */
.stats-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 96px 160px 96px 160px; */
}

.stats-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 160px;
    margin: 96px 160px 96px 160px;
    margin: 144px 160px 144px 160px;
}

.stats-card {
    height: 260px;
    width: 240px;
    border-radius: 40px;
    background: linear-gradient(317.53deg, rgba(255, 255, 255, 0.4) 0%, var(--pink-background) 100%);
    box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px); /* Note: backdrop-filter has minimal browser support */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* padding: 16px 0; */
}

.stats-card-title {
    font-size: 48px;
    line-height: 1;
    color: #FE90D5;
    margin-top: 16px;
    text-align: center;
    /* word-wrap: break-word; */
}

.stats-text {
    font-size: 32px;
    text-align: center;
    margin: 0 24px;
    line-height: 1.2;
}

.stats-card i{
    font-size: 44px;
    color: var(--yellow-logo);
    margin-bottom: 16px;
}

@media (max-width: 1400px) {
    .stats-cards {
        margin-left: 60px;
        margin-right: 60px;
    }
}

@media (max-width: 1200px) {
    .stats-cards {
        gap: 60px;
    }
}

@media (max-width: 1036px) {
    .stats-cards {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 480px) {
    .stats-cards {
        margin: 96px 24px;
    }

}

@media (max-width: 320px) {
    .stats-card {
        width: 220px;
    }
}

@media (max-width: 270px) {
    .stats-card {
        width: 200px;
    }
}

/* Art History Section */
.art-history {
    background-color: var(--blue-grey-background);
    padding: 48px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.quote-title {
    color: #517694;
    text-align: center;
}

.paragraph-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 400px;
    padding: 96px 48px 48px 48px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.paragraph-text {
    font-size: 36px;
    max-width: 800px;
}

.paragraph-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.paragraph-image-container img {
    /* width: 30%; */
    max-width: 400px;
    border-radius: 20px;
}

.image-title {
    font-size: 20px;
    text-align: center;
    color: #517694;
    max-width: 350px;
}


@media (max-width: 1500px) {
    .paragraph-container {
        gap: 200px;
    }
}

@media (max-width: 1250px) {
    .paragraph-container {
        gap: 100px;
    }
    .paragraph-text {
        font-size: 32px;
    }
}

@media (max-width: 1100px) {
    .paragraph-container {
        flex-direction: column;
        padding-bottom: 0;
    }
    .flex-direction {
        flex-direction: column-reverse;
    }
    .paragraph-text {
        text-align: center;
    }
    .paragraph-image-container img{
        max-width: 350px;
    }
    .image-title {
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .paragraph-container {
        gap: 50px;
        padding-top: 48px;
    }
    .paragraph-text {
        font-size: 28px;
    }
    .paragraph-image-container img{
        max-width: 300px;
    }
    .image-title {
        max-width: 250px;
    }
}

@media (max-width: 450px) {
    .hero-container {
        padding: 96px 16px;
    }
    .paragraph-text {
        font-size: 24px;
    }
}

@media (max-width: 380px) {
    .paragraph-image-container img{
        max-width: 250px;
    }
    .image-title {
        max-width: 200px;
    }
}

/* More Examples Section */
.more-examples-section {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 0;
}

.examples-title {
    text-align: center;
    padding: 0 20px;
}

.example-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 96px 60px;
}

.example-card {
    background-color: #fff;
    height: 560px;
    width: 420px;
    border-radius: 40px;
    box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.2);
    background: linear-gradient(317.53deg, rgb(255, 255, 255, 0.5) 0%, var(--blue-background) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
    height: auto;
    gap: 20px;
}

.example-card img {
    width: 420PX;
    max-height: 440px;
    border-radius: 40px 40PX 0 0;
}

.example-text {
    font-size: 24px;
    text-align: center;
    margin: 0 40px;
}

.hero-order-button {
    background-color: var(--yellow-logo);
    box-shadow: 8px 8px 0px #322001;
    /* margin-top: 80px; */
    margin-left: auto;
    margin-right: auto;
}

.hero-order-button i {
    font-size: 24px;
    padding-left: 8px;
}

.hero-order-button:hover {
    background-color: hsl(36, 90%, 60%);
}

@media (max-width: 470px) {
    .example-cards {
        margin: 96px 16px;
    }
    .example-card {
        height: auto;
        width: 100%;
        gap: 20px;
        border-radius: 20px;
    }
    .example-card img{
        width: 100%;
        border-radius: 20px 20PX 0 0;
    }
    .example-text {
        margin: 0 8px;
        font-size: 20px;
    }
}

@media (max-width: 350px) {
    .example-text {
        font-size: 20px;
    }
}

/* Recent History Section */
.recent-history {
    background-color: var(--blue-background);
    padding: 48px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo-image {
    width: 360px;
}

.university-image {
    width: 400px;
    /* max-height: 420px; */
    position: relative;
    /* box-shadow: 48px 0px 0 #FDD186; */
}

/* .university-image-container {
    position: relative;
    max-width: 1600px;
}

.university-image-container::before {
    position: absolute;
    content: '';
    width: 300px;
    height: 400px;
    background-color: #F5B962;
    z-index: -1;
    bottom: 0px;
    left: 96px;
    border: 1px solid #FDD186;
    border-radius: 20px;
}

.university-image-container::after {
    position: absolute;
    content: '';
    width: 300px;
    height: 380px;
    background-color: #01363B;
    z-index: -2;
    bottom: 0px;
    left: 144px;
    border: 1px solid #FDD186;
    border-radius: 20px;
} */


/* .background-rectangle1 {
    position: absolute;
    content: '';
    width: 300px;
    height: 400px;
    background-color: #FDD186;
    z-index: -1;
    bottom: 32px;
    left: 48px;
    border: 1px solid #FDD186;
    border-radius: 20px;
} */

/* .background-rectangle2 {
    position: absolute;
    content: '';
    width: 300px;
    height: 380px;
    background-color: #F5B962;
    z-index: 2;
    left: 156px;
    border: 1px solid #FDD186;
    border-radius: 20px;
} */

/* Exhibition Section */
.exhibition-section {
    background-color: var(--pink-grey-background);
    padding: 96px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 96px;
}

.exhibition-section img {
    width: 500px;
    border-radius: 20px;
    border: 5px solid #FDD186;
}

.exhibition-text {
    font-size: 36px;
}

.exhibition-text p{
    margin-bottom: 32px;
}

.exhibition-text ul {
    padding: 0 48px;
}

.exhibition-text ul li {
    margin-bottom: 16px;
}

.exhibition-text ul li:last-child {
    margin-bottom: 0;
}

.exhibition-text ul li::marker {
    font-size: 28px;
    color: var(--blue-button);
}

@media (max-width: 1250px) {
    .exhibition-text {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .exhibition-section img {
        width: 400px;
    }
    .exhibition-text {
        font-size: 28px;
    }
}

@media (max-width: 450px) {
    .exhibition-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .exhibition-section img {
        width: 300px;
    }
}

@media (max-width: 350px) {
    .exhibition-section img {
        width: 250px;
    }
}